C# |
---|
public static String GetString(Object value) |
C# |
---|
using LJCNetCommon; // Gets a trimmed string value from an object. private static void GetString() { // Simulates an Object value like that received from a DataTable. string setup = "3"; object obj = setup; // Gets a string value from an object. string value = NetCommon.GetString(obj); } |